home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / edit / jed207.lha / macros / make < prev    next >
Text File  |  1992-11-20  |  453b  |  21 lines

  1.  
  2. ; MAKE
  3. ;
  4. ; runs [d]make in the current directory
  5. ; needs Matt Dillon's fifo: device to be running
  6.  
  7. (macro `make'
  8. {
  9.     (local
  10.     `marg' (arg 1 `s' `make args> ')
  11.     )
  12.     (if (! (system `newshell window con:///200/make/WAIT/AUTO/SCREEN from fifo:mk/rm'))
  13.     {
  14.     ; change "dmake" to "make", or whatever you use.
  15.     (system (format `echo >fifo:mk/wK dmake %s' (marg)))
  16.     (system `echo >fifo:mk/wK echo done.')
  17.     (system `echo >fifo:mk/wKe endcli')
  18.     })
  19. })
  20.  
  21.